home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
archiver
/
restore.arc
/
MAKEFILE
< prev
next >
Wrap
Text File
|
1988-01-07
|
353b
|
19 lines
# Makefile for RESTORE
CFLAGS=
OBJ=restore.o getopt.o
SRC=restore.c getopt.c
OTHERS=backup
restore: $(OBJ) backup
cc -o restore.prg $(OBJ)
clean:
( rm *.o *.prg ; exit 0 )
# `ct' is the copy-and-preserve-timestamp routine posted last November
backup: $(SRC) $(OTHERS)
( touch backup; exit 0 )
ct -n $? backup d:\src\rest